T
A generic Type parameter.
Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
Generic RasterCollection Class
See Also  Members  
Leadtools Namespace : Generic RasterCollection Class




Represents a generic collection of objects.

Syntax

Visual Basic (Declaration) 
<DefaultMemberAttribute("Item")>
<SerializableAttribute()>
Public Class RasterCollection(Of T) 
Visual Basic (Usage)Copy Code
Dim instance As RasterCollection(Of T)
C# 
[DefaultMemberAttribute("Item")]
[SerializableAttribute()]
public class RasterCollection<T> 
Managed Extensions for C++ 
[DefaultMemberAttribute("Item")]
[SerializableAttribute()]
public __gc class RasterCollection<T> 
C++/CLI 
[DefaultMemberAttribute("Item")]
[SerializableAttribute()]
generic<typename T>
public ref class RasterCollection 

Type Parameters

T
A generic Type parameter.

Example

Sample to test the RasterCollection class.

Remarks

The Generic RasterCollection class provides a generic collection class that implements the .NET Generic IList, Generic ICollection and Generic IEnumerable interfaces.

The class contains the ItemAdded and ItemRemoved events. These events will fire whenever objects are added or removed to/from the collection.

Inheritance Hierarchy

System.Object
   Leadtools.RasterCollection

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also